/*- * See the file LICENSE for redistribution information. * * Copyright (c) 2000-2006 * Sleepycat Software. All rights reserved. * * $Id: EnvConfigObserver.java,v 1.1 2006/05/06 09:00:25 ckaestne Exp $ */ package com.sleepycat.je.dbi; import com.sleepycat.je.DatabaseException; /** * Implemented by observers of mutable config changes. */ public interface EnvConfigObserver { /** * Notifies the observer that one or more mutable properties have been * changed. */ void envConfigUpdate(DbConfigManager configMgr) throws DatabaseException; }